@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&display=swap");

* {
  margin: 3;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: rgb(81, 81, 81);
}

body {
  cursor: url(vinn.png) 25 25, pointer;
}
a:hover {
  cursor: url(hovervinn.png) 25 25, pointer;
}

body {
  padding: 30px;
}

#logo img {
  width: 100px;
  height: auto;
  margin-bottom: 2em;
}

#container {
  display: flex;
  gap: 2em;
}

#container > img {
  height: 90vh;
}

#aaboutme {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 80px;
  color: rgb(81, 81, 81);
}

#info {
  width: 40ch;
}

@media screen and (max-width: 640px) {
  #logo img {
    width: 60px;
  }
  #container > img {
    height: 52vh;
    object-fit: contain;
  }

  #container {
    flex-direction: column;
  }

  #aaboutme {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 58px;
    color: rgb(81, 81, 81);
  }
}
